1/1

|
tri_mode_mac CRC
by rsabhilash on Aug 5, 2010 |
rsabhilash
Posts: 4 Joined: May 5, 2010 Last seen: Mar 14, 2020 |
||
|
Hai all ,
I am trying to implement tri mode mac. When I go through the tx engine I met with CRC_gen module What is the purpose of appending 8'hff to the CRC_reg. CRC_reg Thanks in advance |
|||
|
RE: tri_mode_mac CRC
by ghutchis on Aug 5, 2010 |
ghutchis
Posts: 15 Joined: Apr 21, 2004 Last seen: Mar 23, 2026 |
||
|
Typically CRC generators are initialized to all 1s prior to calculating the CRC; designer may be initializing over 4 cycles. Example CRC generator:
always @*
begin
nxt_icrc[7:0] = icrc[7:0] ^ data;
nxt_icrc[31:8] = icrc[31:8];
for (i=0; i
|
|||
|
RE: tri_mode_mac CRC
by thanhmai on Jul 14, 2011 |
thanhmai
Posts: 1 Joined: Jan 17, 2011 Last seen: Apr 17, 2026 |
||
|
thanks
|
|||
1/1

